home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.xpointer;
-
- import java.io.Serializable;
-
- public class RelTermAttribute implements Serializable {
- static final long serialVersionUID = 1475177589880703773L;
- String attr;
- int valueType = -1;
- String value;
-
- public RelTermAttribute(String var1, int var2, String var3) {
- this.valueType = var2;
- this.attr = var1;
- this.value = var3;
- }
-
- public String getName() {
- return this.attr;
- }
-
- public int getValueType() {
- return this.valueType;
- }
-
- public String getValue() {
- return this.value;
- }
-
- public String toString() {
- return "," + this.attr + "," + (this.valueType == 3 ? XPointerParser.makeSkipLit(this.value) : this.value);
- }
- }
-